博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从首页问答标题到问答详情页
阅读量:5079 次
发布时间:2019-06-12

本文共 1830 字,大约阅读时间需要 6 分钟。

1.主PY文件写视图函数,带id参数。 

@app.route('/detail/<question_id>')
def detail(question_id):
    quest = 
    return render_template('detail.html', ques = quest)
@app.route('/detail/
')def detail(question_id): quest=Question.query.filter(Question.id==question_id).first() return render_template('detail.html',ques=quest)

2.首页标题的标签做带参数的链接。

      {
{ url_for('detail',question_id = foo.id) }}

{% for foo in questions %}            
  • {
    { foo.author.username }}
    {
    { foo.title }}
    发布时间:{
    { foo.creat_time }}

    {

    { foo.detail }}

  • {
    % endfor %}

    3.在详情页将数据的显示在恰当的位置。 

    {
    { ques.title}}
    {
    { ques.id  }}{
    {  ques.creat_time }}
    {
    { ques.author.username }} 
    {
    { ques.detail }}

    {

    { ques.detail }}



    4.建立评论的对象关系映射:

    class Comment(db.Model):

        __tablename__='comment'

    class Comment(db.Model):    __tablename__='comment'    id=db.Column(db.Integer, primary_key=True, autoincrement=True)    author_id = db.Column(db.Integer,db.ForeignKey('user.id'))    question_id = db.Column(db.Integer,db.ForeignKey('question.id'))    creat_time = db.Column(db.DateTime, default=datetime.now)    detail=db.Column(db.Text,nullable=False)    question=db.relationship('Question',backref=db.backref('comments'))    author=db.relationship('User',backref=db.backref('comments'))

    转载于:https://www.cnblogs.com/lwn-blog/p/7992789.html

    你可能感兴趣的文章
    各种米的营养价值
    查看>>
    php 处理数字为金钱格式
    查看>>
    学习51单片机——秒表分享
    查看>>
    我画你猜(微信版--游戏说明)
    查看>>
    cssText的用法以及特点 转载至http://www.cnblogs.com/majingyi/p/6840818.html
    查看>>
    7款纯CSS3实现的炫酷动画应用
    查看>>
    sed结构分析 + awk结构分析
    查看>>
    MySQL安装+更换yum源+mysql密码忘记(2019更新)
    查看>>
    解决ubuntu10插入耳机还有外音的问题
    查看>>
    自用win10软件
    查看>>
    Hive异常- requestedMemory=1536, maxMemory=1024
    查看>>
    hdu 3001 Travelling
    查看>>
    python 选择排序
    查看>>
    win10上安装keras
    查看>>
    unity3d AssetStore 下载的资源位置
    查看>>
    [编织消息框架][JAVA核心技术]动态代理介绍
    查看>>
    Bayesian Networks
    查看>>
    css3-颜色
    查看>>
    爱拼图游戏android源码完整版
    查看>>
    [T-ARA][HOLIDAY]
    查看>>